home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / MacPerl 5.1.3 / Mac_Perl_513_src / perl5.002 / BulkBuildRules.mk < prev    next >
Encoding:
Text File  |  1996-10-29  |  530 b   |  29 lines  |  [TEXT/MPS ]

  1. #
  2. # Build rules for dmake bulk targets. Because of the macros, this needs to be
  3. # included at the end.
  4. #
  5.  
  6. .PHONY : Objects68K Objects680 ObjectsPPC
  7.  
  8. Objects68K    :    Obj $(Objects68K) 
  9.     Set Echo 1
  10.     If "{{Src68K}}" != "" 
  11.         $(C68K) -t -ext .68K.o {{Src68K}} -o :Obj:
  12.     End
  13.  
  14. Objects680    :    Obj $(Objects680) 
  15.     Set Echo 1
  16.     If "{{Src680}}" != "" 
  17.         $(C680) -t -ext .680.o {{Src680}} -o :Obj:
  18.     End
  19.     
  20. ObjectsPPC    :    Obj $(ObjectsPPC) 
  21.     Set Echo 1
  22.     If "{{SrcPPC}}" != "" 
  23.         $(CPPC) -t -ext .PPC.o {{SrcPPC}} -o :Obj:
  24.     End
  25.  
  26. Obj:    
  27.     NewFolder Obj
  28.     
  29.